home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / examples / progDH4.2b < prev    next >
Encoding:
Text File  |  1995-06-29  |  548 b   |  23 lines

  1. # Dans program 4.2
  2. # test a scrolled list
  3.  
  4. xtAppInitialize
  5.  
  6. xmMainWindow .main managed
  7.  
  8. # creating a scrolled list makes two new widgets - the scrolled window
  9. # and the list. The sw is used for geometry, the list - as a list
  10. xmScrolledList .main.list managed
  11.  
  12. # note the list is used here
  13. .main.list setValues -itemCount 8 \
  14.     -items "red, green, blue, orange, maroon, grey, black, white"
  15. .main.list setValues -visibleItemCount 5
  16.  
  17. # note the sw is used here, not the list
  18. .main setValues -workWindow [.main.list parent]
  19.  
  20. . realizeWidget
  21. . mainLoop
  22.  
  23.